home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1998 June / SGI Freeware 1998 June.iso / dist / fw_UMINNgopher.idb / usr / freeware / src / gopher_1.12 / gopher / forms.h.z / forms.h
C/C++ Source or Header  |  1997-09-09  |  380b  |  23 lines

  1. /*
  2.  * This defines the form type.
  3.  */
  4.  
  5. struct form_struct {
  6.      int  numfields;
  7.      char *Title;
  8.      char **tags;
  9.      char **values;
  10.      int  *lengths;
  11.      int  *xloc;
  12.      int  *yloc;
  13. };
  14.  
  15. typedef struct form_struct Form;
  16.  
  17. /** Operations on Forms ***/
  18.  
  19. BOOLEAN NewForm(/* Form* */);
  20. void ModifyForm(/* Form* */);
  21. void DisplayForm(/* Form* */);
  22. void PrintForm(/* Form * */);
  23.